home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / JChartResourceBundle.java < prev    next >
Text File  |  1998-09-29  |  4KB  |  54 lines

  1. package com.symantec.itools.swing;
  2.  
  3. public class JChartResourceBundle
  4.     extends java.util.ListResourceBundle
  5. {
  6.     static public final String JCHART_LEGEND_KEY = "JCHART_LEGEND";
  7.     static public final String JCHART_SERIES_KEY = "JCHART_SERIES";
  8.  
  9.     static public final String JCHART_GET_MODEL_CONNNECTION_KEY = "JCHART_GET_MODEL_CONNNECTION";
  10.     static public final String JCHART_SET_MODEL_CONNNECTION_KEY = "JCHART_SET_MODEL_CONNNECTION";
  11.     static public final String JCHART_GET_LEGEND_CONNNECTION_KEY = "JCHART_SET_LEGEND_CONNNECTION";
  12.     static public final String JCHART_SET_LEGEND_CONNNECTION_KEY = "JCHART_SET_LEGEND_CONNNECTION";
  13.     static public final String JCHART_GET_STYLE_CONNNECTION_KEY = "JCHART_GET_STYLE_CONNNECTION";
  14.     static public final String JCHART_SET_STYLE_CONNNECTION_KEY = "JCHART_SET_STYLE_CONNNECTION";
  15.     static public final String JCHART_GET_GRID_CONNNECTION_KEY = "JCHART_GET_GRID_CONNNECTION";
  16.     static public final String JCHART_SET_GRID_CONNNECTION_KEY = "JCHART_SET_GRID_CONNNECTION";
  17.     static public final String JCHART_GET_TITLE_CONNNECTION_KEY = "JCHART_SET_TITLE_CONNNECTION";
  18.     static public final String JCHART_SET_TITLE_CONNNECTION_KEY = "JCHART_SET_TITLE_CONNNECTION";
  19.     static public final String JCHART_GET_NUMYTICKS_CONNNECTION_KEY = "JCHART_GET_NUMYTICKS_CONNNECTION";
  20.     static public final String JCHART_SET_NUMYTICKS_CONNNECTION_KEY = "JCHART_SET_NUMYTICKS_CONNNECTION";
  21.     static public final String JCHART_GET_NUMSERIES_CONNNECTION_KEY = "JCHART_GET_NUMSERIES_CONNNECTION";
  22.     static public final String JCHART_GET_YAXISMIN_CONNNECTION_KEY = "JCHART_GET_YAXISMIN_CONNNECTION";
  23.     static public final String JCHART_SET_YAXISMIN_CONNNECTION_KEY = "JCHART_SET_YAXISMIN_CONNNECTION";
  24.     static public final String JCHART_GET_YAXISMAX_CONNNECTION_KEY = "JCHART_GET_YAXISMAX_CONNNECTION";
  25.     static public final String JCHART_SET_YAXISMAX_CONNNECTION_KEY = "JCHART_SET_YAXISMAX_CONNNECTION";
  26.  
  27.     private final Object[][] contents =
  28.         {
  29.             { JCHART_LEGEND_KEY,  "Legend" },
  30.             { JCHART_SERIES_KEY,  "Series" },
  31.             { JCHART_GET_MODEL_CONNNECTION_KEY,  "Get the %class%'s model" },
  32.             { JCHART_SET_MODEL_CONNNECTION_KEY,  "Set the %class%'s model" },
  33.             { JCHART_GET_LEGEND_CONNNECTION_KEY, "Get whether the %class%'s legend is visible" },
  34.             { JCHART_SET_LEGEND_CONNNECTION_KEY, "Set whether the %class%'s legend is visible" },
  35.             { JCHART_GET_STYLE_CONNNECTION_KEY,  "Get the %class%'s graphing style" },
  36.             { JCHART_SET_STYLE_CONNNECTION_KEY,  "Set the %class%'s graphing style" },
  37.             { JCHART_GET_GRID_CONNNECTION_KEY,   "Get whether the %class%'s grid is visible" },
  38.             { JCHART_SET_GRID_CONNNECTION_KEY,   "Set whether the %class%'s grid is visible" },
  39.             { JCHART_GET_TITLE_CONNNECTION_KEY,  "Get the %class%'s title" },
  40.             { JCHART_SET_TITLE_CONNNECTION_KEY,  "Set the %class%'s title" },
  41.             { JCHART_GET_NUMYTICKS_CONNNECTION_KEY,  "Get the %class%'s number of y axis divisions" },
  42.             { JCHART_SET_NUMYTICKS_CONNNECTION_KEY,  "Set the %class%'s number of y axis divisions" },
  43.             { JCHART_GET_NUMSERIES_CONNNECTION_KEY,  "Get the %class%'s number of series" },
  44.             { JCHART_SET_YAXISMIN_CONNNECTION_KEY,   "Set the %class%'s origin for the y axis" },
  45.             { JCHART_GET_YAXISMIN_CONNNECTION_KEY,   "Get the %class%'s origin for the y axis" },
  46.             { JCHART_SET_YAXISMAX_CONNNECTION_KEY,   "Set the %class%'s maximum value for the y axis" },
  47.             { JCHART_GET_YAXISMAX_CONNNECTION_KEY,   "Get the %class%'s maximum value for the y axis" },
  48.         };
  49.  
  50.     protected Object[][] getContents()
  51.     {
  52.         return contents;
  53.     }
  54. }